Hi Dan,
User Thread #1 should not stop when
Emergency Stop is activated. Threads #2-7 will stop. Could you use
Thread #1for your PLC Communication and use one of the other Threads for your
Initialization?
Regarding lights here are some
thoughts:
Red - you would need to define the
error conditions. Most error conditions usually disable the axes so you
might use that as a condition (ie ch0->Enable).
Because of the issue of the PC/Windows/USB
not being real time the PC communication may legitimately stop for as much as
several seconds. There is a counter that increments each time the PC
requests status to update the DRO and such. If this counter doesn't
increment for some time period you might assume that the Host PC Program is not
running or communicating. Attached is an example of how to use
it.
extern int StatusRequestCounter; //
increments each time host requests status
You would need to modify the
ModBus Code to globally indicate there was an error by setting a Virtual IO bit
or something.
Yellow - There is a
Macro (JOB_ACTIVE) that will return TRUE if GCode is currently running
Yellow Blink -
extern int
CS0_StoppingState;
// emergency stop in progress, 0 = not stopping, 1=stopping coord motion,
2=stopping indep, 3=fully stopped, 4=ind stopped
can be tested for non-zero to
indicate FeedHold is Active
Don't really know what you mean
by M6 waiting for cycle start. But if M6 is a C program modify it to set a
global status such a a Virtual Io Bit when it is waiting.
Green
M0/M30 - I can't think of
a way to detect whether an M0 vs M30 occurred to show Green vs Blinking
Yellow
HTH
Regards
TK